home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-02-21 | 320 b | 15 lines | [TEXT/RLAB] |
- //-------------------------------------------------------------------//
-
- // Syntax: asinh ( X )
-
- // Description:
-
- // Asinh is the inverse hyperbolic sine of the element(s) of X.
-
- //-------------------------------------------------------------------//
-
- asinh = function ( x )
- {
- return log (x + sqrt (x.^2 + 1));
- };
-